Post

Replies

Boosts

Views

Activity

SwiftUI NavigationView broken in iOS 13.3
Since iOS 13.3 the NavigationLink inside a NavigationView is broken. This is only for real iOS devices, the simulator works fine.Steps to reproduce:Create a new project with SwiftUIReplace the ContentView struct with the code at the bottom of this postRun the app on a physical iOS device with iOS 13.3 beta 2/3Tap the show detail screen buttonTap back button at the topTap the show button again and it doesn't do anything anymoreNote that this bug only occurs on a real device. This worked perfectly fine before in iOS 13.2. I reported this bug in the Feedback Assistant as well (FB7457511)struct ContentView: View { var body: some View { NavigationView { NavigationLink(destination: Text("Detail screen")) { Text("Show detail screen") } } .navigationViewStyle(StackNavigationViewStyle()) } }
10
0
7.9k
Nov ’19